X-Git-Url: https://git.r.bdr.sh/rbdr/super-polarity/blobdiff_plain/0cafec445af0a97d96feb1a1daefa1486142c73f..4fc09567c557a1110180940cca40fd7144921026:/Super%20Polarity/Screen.cs diff --git a/Super Polarity/Screen.cs b/Super Polarity/Screen.cs deleted file mode 100644 index 006b047..0000000 --- a/Super Polarity/Screen.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; - -namespace SuperPolarity -{ - class Screen - { - protected SuperPolarity Game; - public bool Active; - public Screen(SuperPolarity game) - { - Active = false; - Game = game; - } - - public virtual void Update(GameTime gameTime) - { - } - - public virtual void Draw(SpriteBatch spriteBatch) - { - } - - public virtual void LoadContent() - { - } - - public virtual void Initialize() - { - } - - public virtual void CleanUp() - { - } - } -}